From: Keir Fraser Date: Thu, 23 Oct 2008 10:20:44 +0000 (+0100) Subject: xenpmd: Fix makefile for 'make install'. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14054^2~45 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=869da4e975c494e77d9256461873abf5fc935983;p=xen.git xenpmd: Fix makefile for 'make install'. Signed-off-by: Keir Fraser --- diff --git a/tools/xenpmd/Makefile b/tools/xenpmd/Makefile index 0e9f54040c..6fc31a46b4 100644 --- a/tools/xenpmd/Makefile +++ b/tools/xenpmd/Makefile @@ -10,6 +10,11 @@ BIN = xenpmd .PHONY: all all: $(BIN) +.PHONY: install +install: all + $(INSTALL_DIR) $(DESTDIR)$(SBINDIR) + $(INSTALL_PROG) $(BIN) $(DESTDIR)$(SBINDIR) + .PHONY: clean clean: $(RM) -f $(BIN)